home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_server_comms.dfm < prev    next >
Encoding:
Text File  |  2005-07-30  |  4.5 KB  |  217 lines

  1. object scope_comms: Tscope_comms
  2.   Left = 348
  3.   Top = 178
  4.   HelpType = htKeyword
  5.   HelpKeyword = 'Communications'
  6.   BorderStyle = bsDialog
  7.   Caption = 'NTC Comms control'
  8.   ClientHeight = 203
  9.   ClientWidth = 256
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   HelpFile = 'ntc.hlp'
  17.   OldCreateOrder = False
  18.   OnCloseQuery = form_close_query
  19.   OnCreate = formcreate
  20.   OnPaint = check_activate
  21.   OnShow = FormShow
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object comms_panel: TPanel
  25.     Left = 0
  26.     Top = 0
  27.     Width = 256
  28.     Height = 203
  29.     Align = alClient
  30.     TabOrder = 0
  31.     object port_group: TGroupBox
  32.       Left = 0
  33.       Top = 4
  34.       Width = 257
  35.       Height = 200
  36.       Caption = 'Port Configuration'
  37.       TabOrder = 0
  38.       object serial_label: TLabel
  39.         Left = 16
  40.         Top = 24
  41.         Width = 48
  42.         Height = 13
  43.         Caption = 'Serial Port'
  44.       end
  45.       object speed_label: TLabel
  46.         Left = 16
  47.         Top = 49
  48.         Width = 31
  49.         Height = 13
  50.         Caption = 'Speed'
  51.       end
  52.       object parity_label: TLabel
  53.         Left = 16
  54.         Top = 98
  55.         Width = 26
  56.         Height = 13
  57.         Caption = 'Parity'
  58.       end
  59.       object bits_label: TLabel
  60.         Left = 16
  61.         Top = 73
  62.         Width = 43
  63.         Height = 13
  64.         Caption = 'Data Bits'
  65.       end
  66.       object stop_bits_label: TLabel
  67.         Left = 16
  68.         Top = 123
  69.         Width = 42
  70.         Height = 13
  71.         Caption = 'Stop Bits'
  72.       end
  73.       object timeout_label: TLabel
  74.         Left = 16
  75.         Top = 147
  76.         Width = 77
  77.         Height = 13
  78.         Caption = 'Timeout [msecs]'
  79.       end
  80.       object interval_label: TLabel
  81.         Left = 16
  82.         Top = 172
  83.         Width = 79
  84.         Height = 13
  85.         Caption = 'Interval Timeout '
  86.       end
  87.       object speed_edit: TComboBox
  88.         Left = 120
  89.         Top = 45
  90.         Width = 113
  91.         Height = 21
  92.         ItemHeight = 13
  93.         TabOrder = 0
  94.         Items.Strings = (
  95.           '110'
  96.           '300'
  97.           '1200'
  98.           '2400'
  99.           '4800'
  100.           '9600'
  101.           '14400'
  102.           '19200'
  103.           '38400'
  104.           '57600'
  105.           '115200')
  106.       end
  107.       object port_edit: TComboBox
  108.         Left = 120
  109.         Top = 20
  110.         Width = 113
  111.         Height = 21
  112.         ItemHeight = 13
  113.         TabOrder = 1
  114.         Items.Strings = (
  115.           'COM1'
  116.           'COM2'
  117.           'COM3'
  118.           'COM4'
  119.           'COM5'
  120.           'COM6'
  121.           'COM7'
  122.           'COM8')
  123.       end
  124.       object parity_edit: TComboBox
  125.         Left = 120
  126.         Top = 94
  127.         Width = 113
  128.         Height = 21
  129.         ItemHeight = 13
  130.         TabOrder = 2
  131.         Items.Strings = (
  132.           'N'
  133.           'E'
  134.           'O')
  135.       end
  136.       object data_bits_edit: TComboBox
  137.         Left = 120
  138.         Top = 69
  139.         Width = 113
  140.         Height = 21
  141.         ItemHeight = 13
  142.         TabOrder = 3
  143.         Items.Strings = (
  144.           '4'
  145.           '5'
  146.           '6'
  147.           '7'
  148.           '8')
  149.       end
  150.       object stop_bits_edit: TComboBox
  151.         Left = 120
  152.         Top = 119
  153.         Width = 113
  154.         Height = 21
  155.         ItemHeight = 13
  156.         TabOrder = 4
  157.         Items.Strings = (
  158.           '1'
  159.           '2')
  160.       end
  161.       object timeout_edit: TComboBox
  162.         Left = 120
  163.         Top = 143
  164.         Width = 113
  165.         Height = 21
  166.         ItemHeight = 13
  167.         TabOrder = 5
  168.         OnChange = timeout_editChange
  169.         Items.Strings = (
  170.           '10'
  171.           '50'
  172.           '100'
  173.           '200'
  174.           '250'
  175.           '300'
  176.           '400'
  177.           '500'
  178.           '750'
  179.           '1000'
  180.           '2500'
  181.           '5000'
  182.           '10000')
  183.       end
  184.       object interval_edit: TComboBox
  185.         Left = 120
  186.         Top = 168
  187.         Width = 113
  188.         Height = 21
  189.         ItemHeight = 13
  190.         TabOrder = 6
  191.         OnChange = interval_editChange
  192.         Items.Strings = (
  193.           '2'
  194.           '5'
  195.           '8'
  196.           '10'
  197.           '20'
  198.           '30'
  199.           '40'
  200.           '50'
  201.           '75'
  202.           '100'
  203.           '150'
  204.           '200'
  205.           '250'
  206.           '500')
  207.       end
  208.     end
  209.   end
  210.   object response_timer: TTimer
  211.     Enabled = False
  212.     OnTimer = response_timerTimer
  213.     Left = 80
  214.     Top = 88
  215.   end
  216. end
  217.